home *** CD-ROM | disk | FTP | other *** search
- global gVisitedList, gFoundOne, gTileName, gLastVisFrame, gLastVisMovie, gSavePath
-
- on startMovie
- set gSavePath to "C:\Disney\Demo99_E\Licence\"
- readVisList()
- cursor(-1)
- end
-
- on stopMovie
- writeVisList()
- end
-
- on readVisList
- if objectp(myFile) then
- set myFile to 0
- end if
- set myFile to new(xtra("fileIO"))
- if the machineType = 256 then
- setFilterMask(myFile, "All files, *.*, Text files, *.txt")
- else
- setFilterMask(myFile, "TEXT")
- end if
- set fileName to "Visited.txt"
- if not voidp(fileName) then
- openFile(myFile, gSavePath & fileName, 1)
- set theFile to readFile(myFile)
- if not voidp(theFile) then
- put theFile into field "MyField"
- initVisList()
- else
- WriteEmptyList()
- end if
- end if
- closeFile(myFile)
- set myFile to 0
- end
-
- on writeVisList
- if objectp(myFile) then
- set myFile to 0
- end if
- set myFile to new(xtra("fileIO"))
- if the machineType = 256 then
- setFilterMask(myFile, "All files, *.*, Text files, *.txt")
- else
- setFilterMask(myFile, "TEXT")
- end if
- set fileName to "Visited.txt"
- if not voidp(fileName) then
- openFile(myFile, gSavePath & fileName, 0)
- set theFile to readFile(myFile)
- setPosition(myFile, 0)
- writeString(myFile, field "myField")
- else
- nothing()
- end if
- closeFile(myFile)
- set myFile to 0
- end
-
- on WriteEmptyList
- if objectp(myFile) then
- set myFile to 0
- end if
- set myFile to new(xtra("fileIO"))
- if the machineType = 256 then
- setFilterMask(myFile, "All files, *.*, Text files, *.txt")
- else
- setFilterMask(myFile, "TEXT")
- end if
- set fileName to "Visited.txt"
- if not voidp(fileName) then
- createFile(myFile, gSavePath & fileName)
- openFile(myFile, gSavePath & fileName, 0)
- set theFile to readFile(myFile)
- setPosition(myFile, 0)
- writeString(myFile, field "defMyField")
- else
- nothing()
- end if
- closeFile(myFile)
- set myFile to 0
- readVisList()
- end
-
- on initVisList
- set gVisitedList to [:]
- repeat with n = 1 to the number of lines in field "MyField"
- setaProp(gVisitedList, item 1 of line n of field "MyField", item 2 of line n of field "MyField")
- end repeat
- end
-
- on HighlightThem
- repeat with n = 1 to the number of lines in field "MyField"
- set x to item 2 of line n of field "myField"
- if x = 1 then
- set the member of sprite (n + 2) to n + 48
- next repeat
- end if
- nothing()
- end repeat
- end
-
- on UpdateList
- set y to findPos(gVisitedList, gTileName)
- put "1" into item 2 of line y of field "MyField"
- initVisList()
- end
-
- on whichSSmovie
- set valid to 1
- repeat with x = 1 to count(gVisitedList)
- if getaProp(gVisitedList, "No0" & string(x)) = "0" then
- set valid to 0
- end if
- end repeat
- if valid = 0 then
- go(1, "SSaverN")
- else
- go(1, "SSaverY")
- end if
- end
-
- on putFrameMovie
- set gLastVisFrame to the frame
- set gLastVisMovie to the movie
- end
-